projects
/
pyside6.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
622565a
)
Fix python module paths in CMake
author
Stuart Prescott
<stuart@debian.org>
Mon, 17 Feb 2025 13:50:57 +0000
(
00:50
+1100)
committer
Stuart Prescott
<stuart@debian.org>
Tue, 7 Apr 2026 05:03:52 +0000
(15:03 +1000)
Gbp-Pq: Name 0009-Fix-python-module-paths-in-CMake.patch
sources/shiboken6/cmake/ShibokenHelpers.cmake
patch
|
blob
|
history
diff --git
a/sources/shiboken6/cmake/ShibokenHelpers.cmake
b/sources/shiboken6/cmake/ShibokenHelpers.cmake
index 0e993fadb1df696229a2822d76700e538bb11dc1..63044c39befc8ea69b17c0e388a39b8497c1ece4 100644
(file)
--- a/
sources/shiboken6/cmake/ShibokenHelpers.cmake
+++ b/
sources/shiboken6/cmake/ShibokenHelpers.cmake
@@
-143,13
+143,13
@@
macro(shiboken_internal_set_python_site_packages)
if sys.platform == 'win32':
lib_path = sysconfig.get_path('purelib')
else:
- lib_path = sysconfig.get_path('purelib', scheme='
posix_prefix
')
+ lib_path = sysconfig.get_path('purelib', scheme='
deb_system
')
# /home/qt/dev/env
if sys.platform == 'win32':
data_path = sysconfig.get_path('data')
else:
- data_path = sysconfig.get_path('data', scheme='
posix_prefix
')
+ data_path = sysconfig.get_path('data', scheme='
deb_system
')
# /lib/python3.9/site-packages
rel_path = lib_path.replace(data_path, '')